home *** CD-ROM | disk | FTP | other *** search
- ;
- ; DS - Directory Scanner Pop-up Menu Configuration
- ;
- Comment ("Configured for DS - Directory Scanner")
-
- ;
- ; Parameters
- ;
- Sensitivity (30, 10) ; (Xinc, Yinc)
- Hysteresis (2, 2) ; (AutoX, AutoY)
- ReverseVideo (Yes) ; Menu is displayed in reverse video
- FixedMenu (No) ; Menu is floating (centered on cursor)
- EnableBeep (No) ; Allows menu switching rather than beep
- ExpertMode (Yes)
-
- ;
- ; Cursor Definitions
- ;
- ArrowKeys: Cursor
- (
- Left ([Left])
- Right ([Right])
- Up ([Up])
- Down ([Down])
- )
-
- ;
- ; Button Definitions
- ;
-
- L_UP: Button (Keys([F1])) ; Left button, Up 1 Directory
- M_DN: Button (Keys([F2])) ; Middle button, Down 1 Directory
- R_CR: Button (Keys([Enter])) ; Right button, Carriage Return
-
- LM_DIR: Button (Menu(DIR)) ;
-
- MR_FILE: Button (Menu(FILE)) ;
-
- LR_COLOR: Button (Menu(COLOR)) ;
-
- LMR_EXIT: Button (Menu(EXIT)) ;
-
-
- ;
- ; Menu Definitions
- ;
- DIR: Menu
- (
- Title ("Directory")
- Position(UpperLeft(33,1))
- Item (" ", )
- Item ("Root Dir", Keys([F3]))
- Item ("Top Dir", Keys([F5]))
- Item ("Up 10 Dir", Keys([F1] [F1] [F1] [F1] [F1] [F1] [F1] [F1] [F1] [F1]))
- Item ("───────────", )
- Item ("Dn 10 Dir", Keys([F2] [F2] [F2] [F2] [F2] [F2] [F2] [F2] [F2] [F2]))
- Item ("Bottom Dir", Keys([F6]))
- Item ("Last Dir", Keys([F4]))
- Item ("───────────", )
- Item ("Scroll Up ", Keys([F7] [F7] [F7] [F7] [F7] [F7] [F7] [F7] [F7] [F7] ))
- Item ("Scroll Down", Keys([F8] [F8] [F8] [F8] [F8] [F8] [F8] [F8] [F8] [F8] ))
- )
-
- COLOR: Menu
- (
- Title ("Misc")
- Position(LowerLeft(33,20))
- Item (" ", )
- Item ("Foreground", Keys("+"))
- Item ("Border", Keys([Backspace]))
- Item ("Background", Keys("-"))
- Item (" ", )
- Item ("Help", Keys("?"))
- )
-
- FILE: Menu
- (
- Title ("Commands")
- Position(UpperLeft(1,1))
- Item (" ", Keys([Esc]))
- Item ("Copy Tagged", Keys([a-c]))
- Item ("Delete Tagged", Keys([a-d]))
- Item ("Move Tagged", Keys("m"))
- Item ("Print Tagged", Keys("p"))
- Item ("─────────────", Keys([Esc]))
- Item ("List File", Keys("l"))
- Item ("Edit File", Keys("e"))
- Item ("Find File", Keys("f"))
- Item ("Rename File", Keys("r"))
- Item ("Execute File", Keys("x"))
- Item ("─────────────", Keys([Esc]))
- Item ("Enter Command", Keys("c"))
- Item ("Drive Change", Menu(DRIVES))
- Item ("Spawn DOS", Keys("ccommand" [Enter]))
- Item ("─────────────", Keys([Esc]))
- Item ("PgUp", Keys([PgUp]))
- Item ("PgDn", Keys([PgDn]))
- ; Item (" ", Keys([Esc]))
- )
-
- DRIVES:Menu
- (
- Title ("DRIVES")
- Position(UpperLeft(1,1))
- Item (" ", )
- Item ("A", Keys("da" [Enter]))
- Item ("B", Keys("db" [Enter]))
- Item ("C", Keys("dc" [Enter]))
- Item ("D", Keys("dd" [Enter]))
- ; Item ("E", Keys("de" [Enter]))
- )
-
- EXIT: Menu
- (
- Title ("EXIT")
- Position(LowerRight(78,20))
- Item (" ", )
- Item ("Exit in Marked Directory", Keys([F9]))
- Item (" ", )
- Item ("Exit in Original Directory", Keys([F10]))
- Item (" ", )
- )
-
-
- ;
- ; Mouse Definition
- ;
- Mouse
- (
- Left (L_UP) ; Left Button: Up Directory
-
- LeftMiddle (LM_DIR)
-
- LeftRight (LR_COLOR) ; Left&Right Button Chord
-
- LeftMiddleRight (LMR_EXIT)
-
- Middle (M_DN) ; Middle Button: Down Directory
-
- MiddleRight (MR_FILE)
-
- Right (R_CR) ; Right Button: Carriage Return
-
- Cursor (ArrowKeys)
- )
-
-